home *** CD-ROM | disk | FTP | other *** search
/ El Mac 7 / El Mac 7.iso / Infotenimiento / Makers of the 20th Century / Data / RANDOM.DIR / 00055.ls < prev    next >
Encoding:
Text File  |  1996-03-11  |  654 b   |  25 lines

  1. on mouseDown
  2.   set oldSound to the soundLevel
  3.   repeat while the mouseDown
  4.     if rollOver(6) then
  5.       set temp to (the bottom of sprite the clickOn - the mouseV) / 17
  6.       if temp > 7 then
  7.         set temp to 7
  8.       else
  9.         if temp < 0 then
  10.           set temp to 0
  11.         end if
  12.       end if
  13.       set the castNum of sprite the clickOn to the number of cast string("v" & temp)
  14.       if the soundLevel <> temp then
  15.         set the soundLevel to temp
  16.         if oldSound = 0 then
  17.           puppetSound(2, the number of cast "Random.iff")
  18.         end if
  19.         updateStage()
  20.         set oldSound to temp
  21.       end if
  22.     end if
  23.   end repeat
  24. end
  25.